home *** CD-ROM | disk | FTP | other *** search
/ Mastering Web Site Development / Microsoft Mastering Web Site Development (Microsoft) (1997).iso / Labs / Lab07.1 / error.asp < prev    next >
Text File  |  1997-04-24  |  1KB  |  42 lines

  1. <%@ LANGUAGE="VBSCRIPT" %>
  2.  
  3. <HTML>
  4. <HEAD>
  5. <meta name="GENERATOR" content="Microsoft Developer Studio">
  6. <meta http-equiv="Content-Type"
  7. content="text/html; charset=iso-8859-1">
  8. <title>Document Title</title>
  9. <link rel="STYLESHEET" href="Stylesheets/Grid/Style2.css">
  10. </head>
  11.  
  12. <body background="Images/Grid/Background/Back2.jpg"
  13. bgcolor="White">
  14. <basefont face="Arial, Helvetica, sans-serif">
  15.  
  16.  
  17. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  18.     <tr>
  19.         <th align="Left" nowrap bgcolor="Silver"
  20.         background="./Images/Grid/Navigation/Nav1.jpg"> <font
  21.         size="6"> Error </font> </th>
  22.     </tr>
  23.     <tr>
  24.         <td bgcolor="#FFFFCC"> <font size="-1">  
  25.         <%=session("ErrorTitle") %>
  26.         </font> </td>
  27.     </tr>
  28. </table>
  29. <p>
  30. <%=session("ErrorText") %>
  31. <p>
  32. <INPUT TYPE=button VALUE="Return" NAME="Ret">
  33. </p>
  34. <SCRIPT LANGUAGE="VBS">
  35. <!--
  36. sub Ret_OnClick()
  37.    call window.history.back (2)
  38. end sub
  39. -->
  40. </SCRIPT>
  41. </BODY>
  42. </HTML>